home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 32 / fortune.zip / RUNME.BAT < prev    next >
DOS Batch File  |  1989-10-28  |  584b  |  35 lines

  1. echo off
  2. cls
  3. echo  
  4. echo  To run "FORTUNE" with a black and white monitor, select 1.
  5. echo  
  6. echo  To run "FORTUNE" with a color monitor, select 2.
  7. echo  
  8. echo  To run "FORTUNE" with a grey-scale monitor, select 3.
  9. echo  
  10. getkey To quit, press any other key. 
  11. echo  
  12. if errorlevel 52 goto END
  13. if errorlevel 51 goto THREE
  14. if errorlevel 50 goto TWO
  15. if errorlevel 49 goto ONE
  16. goto END
  17. :THREE
  18. echo  
  19. echo  Please wait.
  20. echo  
  21. FORTUNE m
  22. :TWO
  23. echo  
  24. echo  Please wait.
  25. echo  
  26. FORTUNE c
  27. goto END
  28. :ONE
  29. echo  
  30. echo  Please wait.
  31. echo  
  32. FORTUNE
  33. goto END
  34. :END  
  35.